home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / telecomm / kermit.arc / CKSAAA.DOC < prev    next >
Text File  |  1989-02-14  |  3KB  |  79 lines

  1. ********************************************************************************
  2. ********************************************************************************
  3.  
  4.             C-KERMIT FOR THE ATARI ST
  5.  
  6. ********************************************************************************
  7. ********************************************************************************
  8.  
  9. Author: Rene R. Sugar, Victoria, B.C., Canada
  10.  
  11. C-Kermit for the Atari ST contains built-in shell commands to provide local
  12. and remote file operations.
  13.  
  14. When C-Kermit is in server mode and receives a remote command the output is
  15. written to a temporary directory set by the tmpdir command. The resulting
  16. file is read and sent to the remote user as a "piped" command. After the
  17. command is finished, the temporary file containing the output is erased.
  18.  
  19. The commands are as follows:
  20.  
  21. dir [-d] file-spec            directory listing (one screen at a
  22.                     time, type 'q' or 'Q' to quit)
  23.                     -d list directories only
  24.  
  25. cwd path-spec                change current working directory
  26.  
  27. mkdir directory-name            make a directory
  28.  
  29. rmdir directory-name            remove a directory
  30.  
  31. pwd                    path to current working directory
  32.  
  33. delete [-f] file-spec            interactively delete files
  34.                     ('y' delete, 'n' next, 'q' quit)
  35.                     -f force interactive mode off
  36.  
  37. rename old-filename new-filename    rename a file
  38.  
  39. df                    free space on current disk drive
  40.  
  41. copy source-file destination-file    copy a file
  42.  
  43. move [-c] file-spec directory-name    move files to a directory
  44.                     -c copy files to directory
  45.                     without erasing them
  46.  
  47. type file-spec                show contents of files on screen
  48.  
  49. print filename                print a file
  50.  
  51. date [[YYYYMMDD]HHMMSS]            change the date and/or time
  52.                     displays the system date and time if
  53.                     no argument is specified
  54.  
  55. tmpdir [path-spec]            set temporary directory for "piped"
  56.                     commands or show setting
  57.  
  58. homdir [path-spec]            set home directory or show setting
  59.  
  60. reverse                    toggle reverse of text and background
  61.  
  62. clear                    clear the screen
  63.  
  64. wrap                    toggle word wrap
  65.  
  66. help subject-area            gives usage of commands or a list of
  67.                     commands if subject-area is help
  68.  
  69. To enter the built-in "shell", type an exclamation mark alone on the C-Kermit
  70. command line. To exit the shell, type 'exit' or Control-D.
  71.  
  72. The home directory where C-Kermit looks for your init file, kermit.ini, is
  73. \usr\ckermit. Typing 'cwd' on the C-Kermit command line will make your home
  74. directory the current directory.
  75.  
  76. The directory where temporary files are written for "piped" commands is
  77. \tmp. If your C-Kermit program is not acting as a server, this directory is
  78. not necessary.
  79.